home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir34 / dirutili.zip / T.AVL < prev    next >
Text File  |  1989-08-14  |  8KB  |  197 lines

  1.                           IBM Internal Use Only
  2.  
  3.    ********************************************************************
  4.    *                                                                  *
  5.    *                        T - A Tiny Editor                         *
  6.    *                                                                  *
  7.    ********************************************************************
  8.  
  9.     T is a text editor with a full screen interface similar to that of
  10.     Personal Editor or the E editors.  However T is a tiny editor of
  11.     just under 9K bytes.
  12.  
  13.     Compared to PE or E a number of things are missing from T, in
  14.     particular T only supports 'line' marking (Alt-L) and it has a
  15.     limited, though useful, set of 'command line' commands.
  16.  
  17.     However T is a real editor.  The size of files you may edit is
  18.     limited only by your PC's memory as are the number of files you can
  19.     edit simultaneously.  T can be customised to your own colour and
  20.     keyboard choices using a customiser program.  T can fully support
  21.     displays with any number of rows and columns.
  22.  
  23.     Typically T might be useful for editing very large files, for
  24.     editing on machines with little memory, or for using from within
  25.     programs such as FILEMAN or dBASE III.
  26.  
  27.     Two versions of T are included in the package: T.EXE for PC/DOS and
  28.     T2.EXE for OS/2.
  29.  
  30.     The package contains the following files:
  31.  
  32.         T      AVAIL   -  the availability notice, this file.
  33.         T      EXEBIN  -  the PC/DOS version of the editor.
  34.         T2     EXEBIN  -  the OS/2 version of the editor.
  35.         TKEY   EXEBIN  -  the customiser program.
  36.         TKEYS  DEF     -  a sample custom definition file.
  37.         THELP  HLPBIN  -  a help file.
  38.         T      SCRIPT  -  the documentation.
  39.  
  40.  
  41.     There is a T FORUM on IBMPC for comments, discussion etc. about
  42.     this editor.
  43.  
  44.  
  45.     Tim Baldwin
  46.     IBM UK Software Technology
  47.     Sheridan House
  48.     Winchester
  49.     UK
  50.  
  51.     BALDWINT at WINVMB
  52.  
  53.     -------------------------------------------------------------------
  54.     Version 1.22a - 14th August 1989
  55.  
  56.     This version has a minor change to T2 which will enable it to make
  57.     use of non-'eight-dot-three' filenames allowed with the HPFS
  58.     of OS/2 1.2.
  59.  
  60.     Only T2.EXE has changed.
  61.  
  62.     -------------------------------------------------------------------
  63.     Version 1.22 - 10th July 1989
  64.  
  65.     Two bugs fixed in T and T2:
  66.  
  67.     -  If SET FINAL EOF = OFF is specified and an empty file is saved
  68.        a correct zero length file will be written, not 4096 bytes of
  69.        garbage.
  70.  
  71.     -  A CHANGE command specified as 'C /target' will correctly replace
  72.        'target' with nothing, rather than with garbage.
  73.  
  74.     The default settings for S-F1, S-F2, S-F3, S-F4 and SPILL FILE have
  75.     been corrected in TKEY.
  76.  
  77.     The help file THELP.HLP has been replaced with a new, improved
  78.     version.
  79.  
  80.     T.EXE, T2.EXE, TKEY.EXE and THELP.HLP have changed.
  81.  
  82.     -------------------------------------------------------------------
  83.     Version 1.21 - 31st May 1989
  84.  
  85.     Two bugs fixed:
  86.  
  87.     -  Very long lines (253 to 255 characters) will be correctly
  88.        saved.
  89.  
  90.     -  Will run under MS-DOS.
  91.  
  92.     Only T.EXE and T2.EXE are changed.
  93.  
  94.     -------------------------------------------------------------------
  95.     Version 1.20 - 16th May 1989
  96.  
  97.     This version of T has a number of significant changes and
  98.     enhancements:
  99.  
  100.  
  101.     New Commands:
  102.     ------------
  103.     -  PRINT <device>   Prints the current file to the specified device.
  104.                         If no device is given, it defaults to PRN.
  105.  
  106.     -  MARGIN nn        Sets the right hand margin to column nn.  Enter
  107.                         a value of zero to set no right hand margin.
  108.  
  109.                         See "Word Processing Features" below for more
  110.                         details,
  111.  
  112.     New Functions:
  113.     -------------
  114.     -  MARK LEFT        Default key Alt-F7.  This shifts the marked
  115.                         lines one character to the left.
  116.  
  117.     -  MARK RIGHT       Default key Alt-F8.  This shifts the marked
  118.                         lines one character to the right.
  119.  
  120.     -  ADJUST LINE      Default key Alt-A.  This command will adjust the
  121.                         current line to the right margin.
  122.  
  123.                         See "Word Processing Features" below for more
  124.                         details,
  125.  
  126.     -  SAFE FILE        Default key F4.  This will perform a FILE if the
  127.                         document has been changed, otherwise it will
  128.                         perform a QUIT.
  129.  
  130.     Changed Functions:
  131.     -----------------
  132.     -  SAVE             and related commands (FILE and SAFE FILE) are
  133.                         now very much faster.
  134.  
  135.     -  SPLIT LINE       respects the setting of AUTO INDENT.  If this is
  136.                         set ON the split line will be aligned under the
  137.                         first column of the line above it.
  138.  
  139.     Other Changes:
  140.     -------------
  141.     -  The status line now shows the current margin column (if one has
  142.        been set) in the form 'M nn', to the right of the column number.
  143.  
  144.     -  The default action for unused Ctrl- keys is now NOTHING.  To get
  145.        the previous T action add these commands to your custom
  146.        definition file:
  147.  
  148.               KEY C-A = ASCII 1
  149.               KEY C-B = ASCII 2
  150.               ...
  151.               KEY C-Z = ASCII 26
  152.  
  153.     -  There is a new TKEY setting:
  154.  
  155.               SET MARGIN = OFF
  156.           or  SET MARGIN = nn
  157.  
  158.        this sets an initial right margin.  The default is OFF.
  159.  
  160.     -  T2.EXE and TKEY.EXE are both supplied as WINDOWCOMPATible
  161.        programs ready to run in a PM windowed session.
  162.  
  163.     -  SET SNOW REMOVAL = AUTOMATIC will detect when running on a PCJr
  164.        and suppress the screen snow removing code.
  165.  
  166.     -  TKEY will accept any character (from ASCII 0 to ASCII 255) in
  167.        a .DEF file.  Previously a hex 1A would have been taken as
  168.        end-of-file.
  169.  
  170.     -  TKEY will treat all characters from a // to the end of the
  171.        line as a comment.
  172.  
  173.     Word Processing Features:
  174.     ------------------------
  175.     The new command MARGIN and the new keyboard function ADJUST LINE now
  176.     give T some limited word processing features.  The MARGIN command
  177.     sets a right hand margin.  As text is typed across this margin words
  178.     will be word-wrapped onto a new blank line, meaning paragraphs can
  179.     easily be entered without having to hit the Enter key.
  180.  
  181.     When AUTO INDENT is ON (the default) words that are wrapped are
  182.     aligned under the first non-blank of the previous line, making it
  183.     simple to leave a left margin or to enter sections of text indented.
  184.  
  185.     The word wrapping is not perfect, particularly when corrections are
  186.     made to a paragraph.  After a number of additions and deletions the
  187.     whole paragraph can end up looking a bit of a mess.  The ADJUST LINE
  188.     function (Alt-A) is designed to sort this out.  ADJUST LINE will
  189.     reflow the current line to the right margin, by splitting it if it
  190.     is too long or filling it with words from the following line if it
  191.     is too short.  When it's split the split-off piece aligns under the
  192.     first non-blanks of the previous line and the cursor moves down to
  193.     the split-off line.  This plus the fact that blank lines are ignored
  194.     makes reflowing a paragraph very easy: just put the cursor on the
  195.     first line and keep pressing Alt-A until the job is done.
  196.  
  197.